home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / aclocal / ewl.m4 < prev    next >
Text File  |  2006-01-09  |  9KB  |  199 lines

  1. # Configure paths for Ewl
  2. # Conrad Parker 2001-01-24
  3. # blatantly ripped from gtk.m4, Owen Taylor     97-11-3
  4.  
  5. dnl AM_PATH_EWL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
  6. dnl Test for Ewl, and define EWL_CFLAGS and ECORE_LIBS
  7. dnl
  8. AC_DEFUN([AM_PATH_EWL],
  9. [dnl 
  10. dnl Get the cflags and libraries from the ewl-config script
  11. dnl
  12. AC_ARG_WITH(ewl-prefix,[  --with-ewl-prefix=PFX   Prefix where Ewl is installed (optional)],
  13.             ewl_config_prefix="$withval", ewl_config_prefix="")
  14. AC_ARG_WITH(ewl-exec-prefix,[  --with-ewl-exec-prefix=PFX Exec prefix where Ewl is installed (optional)],
  15.             ewl_config_exec_prefix="$withval", ewl_config_exec_prefix="")
  16. AC_ARG_ENABLE(ewltest, [  --disable-ewltest       Do not try to compile and run a test Ewl program],
  17.             , enable_ewltest=yes)
  18.  
  19.   if test x$ewl_config_exec_prefix != x ; then
  20.      ewl_config_args="$ewl_config_args --exec-prefix=$ewl_config_exec_prefix"
  21.      if test x${EWL_CONFIG+set} != xset ; then
  22.         EWL_CONFIG=$ewl_config_exec_prefix/bin/ewl-config
  23.      fi
  24.   fi
  25.   if test x$ewl_config_prefix != x ; then
  26.      ewl_config_args="$ewl_config_args --prefix=$ewl_config_prefix"
  27.      if test x${EWL_CONFIG+set} != xset ; then
  28.         EWL_CONFIG=$ewl_config_prefix/bin/ewl-config
  29.      fi
  30.   fi
  31.  
  32.   AC_PATH_PROG(EWL_CONFIG, ewl-config, no)
  33.   min_ewl_version=ifelse([$1], ,0.0.0,$1)
  34.   AC_MSG_CHECKING(for Ewl - version >= $min_ewl_version)
  35.   no_ewl=""
  36.   if test "$EWL_CONFIG" = "no" ; then
  37.     no_ewl=yes
  38.   else
  39.     EWL_CFLAGS=`$ECORE_CONFIG $ewl_config_args --cflags`
  40.     EWL_LIBS=`$ECORE_CONFIG $ewl_config_args --libs`
  41.     ewl_config_major_version=`$EWL_CONFIG $ewl_config_args --version | \
  42.            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
  43.     ewl_config_minor_version=`$EWL_CONFIG $ewl_config_args --version | \
  44.            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
  45.     ewl_config_micro_version=`$EWL_CONFIG $ewl_config_args --version | \
  46.            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
  47.  
  48. dnl **********************************************************************
  49. dnl Ewl cannot currently report its own version ; version info is not
  50. dnl given in Ewl.h
  51. dnl Thus, the "enable_ewltest" stuff is currently disabled, enable once
  52. dnl you can determine the currently installed version by querying Ewl[.h]
  53. dnl
  54. dnl K. 2001-01-24
  55. dnl **********************************************************************
  56.  
  57. dnl    if test "x$enable_ewltest" = "xyes" ; then
  58. dnl      ac_save_CFLAGS="$CFLAGS"
  59. dnl      ac_save_LIBS="$LIBS"
  60. dnl      CFLAGS="$CFLAGS $EWL_CFLAGS"
  61. dnl      LIBS="$EWL_LIBS $LIBS"
  62. dnl dnl
  63. dnl dnl Now check if the installed Ewl is sufficiently new. (Also sanity
  64. dnl dnl checks the results of ewl-config to some extent
  65. dnl dnl
  66. dnl       rm -f conf.ewltest
  67. dnl       AC_TRY_RUN([
  68. dnl #include <Ewl.h>
  69. dnl #include <stdio.h>
  70. dnl #include <stdlib.h>
  71. dnl 
  72. dnl int 
  73. dnl main ()
  74. dnl {
  75. dnl   int major, minor, micro;
  76. dnl   char *tmp_version;
  77. dnl 
  78. dnl   system ("touch conf.ewltest");
  79. dnl 
  80. dnl   /* HP/UX 9 (%@#!) writes to sscanf strings */
  81. dnl   tmp_version = g_strdup("$min_ewl_version");
  82. dnl   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) {
  83. dnl      printf("%s, bad version string\n", "$min_ewl_version");
  84. dnl      exit(1);
  85. dnl    }
  86. dnl 
  87. dnl   if ((ewl_major_version != $ewl_config_major_version) ||
  88. dnl       (ewl_minor_version != $ewl_config_minor_version) ||
  89. dnl       (ewl_micro_version != $ewl_config_micro_version))
  90. dnl     {
  91. dnl       printf("\n*** 'ewl-config --version' returned %d.%d.%d, but Ewl (%d.%d.%d)\n", 
  92. dnl              $ewl_config_major_version, $ewl_config_minor_version, $ewl_config_micro_version,
  93. dnl              ewl_major_version, ewl_minor_version, ewl_micro_version);
  94. dnl       printf ("*** was found! If ewl-config was correct, then it is best\n");
  95. dnl       printf ("*** to remove the old version of Ewl. You may also be able to fix the error\n");
  96. dnl       printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
  97. dnl       printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
  98. dnl       printf("*** required on your system.\n");
  99. dnl       printf("*** If ewl-config was wrong, set the environment variable EWL_CONFIG\n");
  100. dnl       printf("*** to point to the correct copy of ewl-config, and remove the file config.cache\n");
  101. dnl       printf("*** before re-running configure\n");
  102. dnl     } 
  103. dnl #if defined (EWL_MAJOR_VERSION) && defined (ECORE_MINOR_VERSION) && defined (ECORE_MICRO_VERSION)
  104. dnl   else if ((ewl_major_version != EWL_MAJOR_VERSION) ||
  105. dnl        (ewl_minor_version != EWL_MINOR_VERSION) ||
  106. dnl            (ewl_micro_version != EWL_MICRO_VERSION))
  107. dnl     {
  108. dnl       printf("*** Ewl header files (version %d.%d.%d) do not match\n",
  109. dnl          EWL_MAJOR_VERSION, ECORE_MINOR_VERSION, ECORE_MICRO_VERSION);
  110. dnl       printf("*** library (version %d.%d.%d)\n",
  111. dnl          ewl_major_version, ewl_minor_version, ewl_micro_version);
  112. dnl     }
  113. dnl #endif /* defined (EWL_MAJOR_VERSION) ... */
  114. dnl   else
  115. dnl     {
  116. dnl       if ((ewl_major_version > major) ||
  117. dnl         ((ewl_major_version == major) && (ewl_minor_version > minor)) ||
  118. dnl         ((ewl_major_version == major) && (ewl_minor_version == minor) && (ewl_micro_version >= micro)))
  119. dnl       {
  120. dnl         return 0;
  121. dnl        }
  122. dnl      else
  123. dnl       {
  124. dnl         printf("\n*** An old version of Ewl (%d.%d.%d) was found.\n",
  125. dnl                ewl_major_version, ewl_minor_version, ewl_micro_version);
  126. dnl         printf("*** You need a version of Ewl newer than %d.%d.%d. The latest version of\n",
  127. dnl            major, minor, micro);
  128. dnl         printf("*** Ewl is always available from ftp://ftp.enlightenment.org.\n");
  129. dnl         printf("***\n");
  130. dnl         printf("*** If you have already installed a sufficiently new version, this error\n");
  131. dnl         printf("*** probably means that the wrong copy of the ewl-config shell script is\n");
  132. dnl         printf("*** being found. The easiest way to fix this is to remove the old version\n");
  133. dnl         printf("*** of Ewl, but you can also set the EWL_CONFIG environment to point to the\n");
  134. dnl         printf("*** correct copy of ewl-config. (In this case, you will have to\n");
  135. dnl         printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
  136. dnl         printf("*** so that the correct libraries are found at run-time))\n");
  137. dnl       }
  138. dnl     }
  139. dnl   return 1;
  140. dnl }
  141. dnl ],, no_ewl=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
  142. dnl        CFLAGS="$ac_save_CFLAGS"
  143. dnl        LIBS="$ac_save_LIBS"
  144. dnl      fi
  145. dnl **********************************************************************
  146.  
  147.   fi
  148.   if test "x$no_ewl" = x ; then
  149.      AC_MSG_RESULT(yes)
  150.      ifelse([$2], , :, [$2])     
  151.   else
  152.      AC_MSG_RESULT(no)
  153.      if test "$EWL_CONFIG" = "no" ; then
  154.        echo "*** The ewl-config script installed by Ewl could not be found"
  155.        echo "*** If Ewl was installed in PREFIX, make sure PREFIX/bin is in"
  156.        echo "*** your path, or set the EWL_CONFIG environment variable to the"
  157.        echo "*** full path to ewl-config."
  158.      else
  159.        if test -f conf.ewltest ; then
  160.         :
  161.        else
  162.           echo "*** Could not run Ewl test program, checking why..."
  163.           CFLAGS="$CFLAGS $EWL_CFLAGS"
  164.           LIBS="$LIBS $EWL_LIBS"
  165.           AC_TRY_LINK([
  166. #include <Ewl.h>
  167. #include <stdio.h>
  168. ],      [ return ((ewl_major_version) || (ewl_minor_version) || (ewl_micro_version)); ],
  169.         [ echo "*** The test program compiled, but did not run. This usually means"
  170.           echo "*** that the run-time linker is not finding Ewl or finding the wrong"
  171.           echo "*** version of Ewl. If it is not finding Ewl, you'll need to set your"
  172.           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
  173.           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
  174.           echo "*** is required on your system"
  175.       echo "***"
  176.           echo "*** If you have an old version installed, it is best to remove it, although"
  177.           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
  178.           echo "***"
  179.           echo "*** If you have a RedHat 5.0 system, you should remove the Ewl package that"
  180.           echo "*** came with the system with the command"
  181.           echo "***"
  182.           echo "***    rpm --erase --nodeps ewl ewl-devel" ],
  183.         [ echo "*** The test program failed to compile or link. See the file config.log for the"
  184.           echo "*** exact error that occured. This usually means Ewl was incorrectly installed"
  185.           echo "*** or that you have moved Ewl since it was installed. In the latter case, you"
  186.           echo "*** may want to edit the ewl-config script: $EWL_CONFIG" ])
  187.           CFLAGS="$ac_save_CFLAGS"
  188.           LIBS="$ac_save_LIBS"
  189.        fi
  190.      fi
  191.      EWL_CFLAGS=""
  192.      EWL_LIBS=""
  193.      ifelse([$3], , :, [$3])
  194.   fi
  195.   AC_SUBST(EWL_CFLAGS)
  196.   AC_SUBST(EWL_LIBS)
  197.   rm -f conf.ewltest
  198. ])
  199.